projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3f918a8
)
Fix typo in calculating secondary cursor color
author
Paolo Borelli
<pborelli@gnome.org>
Sat, 29 Jan 2011 11:24:37 +0000
(12:24 +0100)
committer
Paolo Borelli
<pborelli@gnome.org>
Sat, 29 Jan 2011 11:24:37 +0000
(12:24 +0100)
gtk/gtkstyle.c
patch
|
blob
|
history
diff --git
a/gtk/gtkstyle.c
b/gtk/gtkstyle.c
index 3c7e82d19d98ce14fdf4a8a8e51e557c6276b559..b9312c85d29ccd4c8f52613a689fc68ceeb05df0 100644
(file)
--- a/
gtk/gtkstyle.c
+++ b/
gtk/gtkstyle.c
@@
-4008,7
+4008,7
@@
get_cursor_color (GtkStyleContext *context,
color->red = (fg.red + bg.red) * 0.5 * 65535;
color->green = (fg.green + bg.green) * 0.5 * 65535;
- color->blue = (fg.blue + bg.
green
) * 0.5 * 65535;
+ color->blue = (fg.blue + bg.
blue
) * 0.5 * 65535;
}
}